Files
DedicatedServerCourse/Intermediate/Build/Win64/FPSTemplateServer/Inc/Slate/UHT/InputChord.gen.cpp
Norman Lansing ecb33115bf Initial Commit
2026-01-28 19:08:51 -05:00

163 lines
11 KiB
C++

// Copyright Epic Games, Inc. All Rights Reserved.
/*===========================================================================
Generated code exported from UnrealHeaderTool.
DO NOT modify this manually! Edit the corresponding .h files instead!
===========================================================================*/
#include "UObject/GeneratedCppIncludes.h"
#include "Framework/Commands/InputChord.h"
#include "InputCoreTypes.h"
PRAGMA_DISABLE_DEPRECATION_WARNINGS
static_assert(!UE_WITH_CONSTINIT_UOBJECT, "This generated code can only be compiled with !UE_WITH_CONSTINIT_OBJECT");
void EmptyLinkFunctionForGeneratedCodeInputChord() {}
// ********** Begin Cross Module References ********************************************************
INPUTCORE_API UScriptStruct* Z_Construct_UScriptStruct_FKey();
SLATE_API UScriptStruct* Z_Construct_UScriptStruct_FInputChord();
UPackage* Z_Construct_UPackage__Script_Slate();
// ********** End Cross Module References **********************************************************
// ********** Begin ScriptStruct FInputChord *******************************************************
struct Z_Construct_UScriptStruct_FInputChord_Statics
{
static inline consteval int32 GetStructSize() { return sizeof(FInputChord); }
static inline consteval int16 GetStructAlignment() { return alignof(FInputChord); }
#if WITH_METADATA
static constexpr UECodeGen_Private::FMetaDataPairParam Struct_MetaDataParams[] = {
{ "BlueprintType", "true" },
{ "Comment", "/** An Input Chord is a key and the modifier keys that are to be held with it. */" },
{ "ModuleRelativePath", "Public/Framework/Commands/InputChord.h" },
{ "ToolTip", "An Input Chord is a key and the modifier keys that are to be held with it." },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Key_MetaData[] = {
{ "Category", "Key" },
{ "Comment", "/** The Key is the core of the chord. */" },
{ "ModuleRelativePath", "Public/Framework/Commands/InputChord.h" },
{ "ToolTip", "The Key is the core of the chord." },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bShift_MetaData[] = {
{ "Category", "Modifier" },
{ "Comment", "/** Whether the shift key is part of the chord. */" },
{ "ModuleRelativePath", "Public/Framework/Commands/InputChord.h" },
{ "ToolTip", "Whether the shift key is part of the chord." },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bCtrl_MetaData[] = {
{ "Category", "Modifier" },
{ "Comment", "/** Whether the control key is part of the chord. */" },
{ "ModuleRelativePath", "Public/Framework/Commands/InputChord.h" },
{ "ToolTip", "Whether the control key is part of the chord." },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bAlt_MetaData[] = {
{ "Category", "Modifier" },
{ "Comment", "/** Whether the alt key is part of the chord. */" },
{ "ModuleRelativePath", "Public/Framework/Commands/InputChord.h" },
{ "ToolTip", "Whether the alt key is part of the chord." },
};
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_bCmd_MetaData[] = {
{ "Category", "Modifier" },
{ "Comment", "/** Whether the command key is part of the chord. */" },
{ "ModuleRelativePath", "Public/Framework/Commands/InputChord.h" },
{ "ToolTip", "Whether the command key is part of the chord." },
};
#endif // WITH_METADATA
// ********** Begin ScriptStruct FInputChord constinit property declarations ***********************
static const UECodeGen_Private::FStructPropertyParams NewProp_Key;
static void NewProp_bShift_SetBit(void* Obj);
static const UECodeGen_Private::FBoolPropertyParams NewProp_bShift;
static void NewProp_bCtrl_SetBit(void* Obj);
static const UECodeGen_Private::FBoolPropertyParams NewProp_bCtrl;
static void NewProp_bAlt_SetBit(void* Obj);
static const UECodeGen_Private::FBoolPropertyParams NewProp_bAlt;
static void NewProp_bCmd_SetBit(void* Obj);
static const UECodeGen_Private::FBoolPropertyParams NewProp_bCmd;
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
// ********** End ScriptStruct FInputChord constinit property declarations *************************
static void* NewStructOps()
{
return (UScriptStruct::ICppStructOps*)new UScriptStruct::TCppStructOps<FInputChord>();
}
static const UECodeGen_Private::FStructParams StructParams;
}; // struct Z_Construct_UScriptStruct_FInputChord_Statics
static FStructRegistrationInfo Z_Registration_Info_UScriptStruct_FInputChord;
class UScriptStruct* FInputChord::StaticStruct()
{
if (!Z_Registration_Info_UScriptStruct_FInputChord.OuterSingleton)
{
Z_Registration_Info_UScriptStruct_FInputChord.OuterSingleton = GetStaticStruct(Z_Construct_UScriptStruct_FInputChord, (UObject*)Z_Construct_UPackage__Script_Slate(), TEXT("InputChord"));
}
return Z_Registration_Info_UScriptStruct_FInputChord.OuterSingleton;
}
// ********** Begin ScriptStruct FInputChord Property Definitions **********************************
const UECodeGen_Private::FStructPropertyParams Z_Construct_UScriptStruct_FInputChord_Statics::NewProp_Key = { "Key", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Struct, RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, STRUCT_OFFSET(FInputChord, Key), Z_Construct_UScriptStruct_FKey, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Key_MetaData), NewProp_Key_MetaData) }; // 2693575693
void Z_Construct_UScriptStruct_FInputChord_Statics::NewProp_bShift_SetBit(void* Obj)
{
((FInputChord*)Obj)->bShift = 1;
}
const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FInputChord_Statics::NewProp_bShift = { "bShift", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FInputChord), &Z_Construct_UScriptStruct_FInputChord_Statics::NewProp_bShift_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bShift_MetaData), NewProp_bShift_MetaData) };
void Z_Construct_UScriptStruct_FInputChord_Statics::NewProp_bCtrl_SetBit(void* Obj)
{
((FInputChord*)Obj)->bCtrl = 1;
}
const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FInputChord_Statics::NewProp_bCtrl = { "bCtrl", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FInputChord), &Z_Construct_UScriptStruct_FInputChord_Statics::NewProp_bCtrl_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bCtrl_MetaData), NewProp_bCtrl_MetaData) };
void Z_Construct_UScriptStruct_FInputChord_Statics::NewProp_bAlt_SetBit(void* Obj)
{
((FInputChord*)Obj)->bAlt = 1;
}
const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FInputChord_Statics::NewProp_bAlt = { "bAlt", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FInputChord), &Z_Construct_UScriptStruct_FInputChord_Statics::NewProp_bAlt_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bAlt_MetaData), NewProp_bAlt_MetaData) };
void Z_Construct_UScriptStruct_FInputChord_Statics::NewProp_bCmd_SetBit(void* Obj)
{
((FInputChord*)Obj)->bCmd = 1;
}
const UECodeGen_Private::FBoolPropertyParams Z_Construct_UScriptStruct_FInputChord_Statics::NewProp_bCmd = { "bCmd", nullptr, (EPropertyFlags)0x0010000000000005, UECodeGen_Private::EPropertyGenFlags::Bool , RF_Public|RF_Transient|RF_MarkAsNative, nullptr, nullptr, 1, sizeof(uint8), sizeof(FInputChord), &Z_Construct_UScriptStruct_FInputChord_Statics::NewProp_bCmd_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_bCmd_MetaData), NewProp_bCmd_MetaData) };
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UScriptStruct_FInputChord_Statics::PropPointers[] = {
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInputChord_Statics::NewProp_Key,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInputChord_Statics::NewProp_bShift,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInputChord_Statics::NewProp_bCtrl,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInputChord_Statics::NewProp_bAlt,
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UScriptStruct_FInputChord_Statics::NewProp_bCmd,
};
static_assert(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FInputChord_Statics::PropPointers) < 2048);
// ********** End ScriptStruct FInputChord Property Definitions ************************************
const UECodeGen_Private::FStructParams Z_Construct_UScriptStruct_FInputChord_Statics::StructParams = {
(UObject* (*)())Z_Construct_UPackage__Script_Slate,
nullptr,
&NewStructOps,
"InputChord",
Z_Construct_UScriptStruct_FInputChord_Statics::PropPointers,
UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FInputChord_Statics::PropPointers),
sizeof(FInputChord),
alignof(FInputChord),
RF_Public|RF_Transient|RF_MarkAsNative,
EStructFlags(0x00000001),
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UScriptStruct_FInputChord_Statics::Struct_MetaDataParams), Z_Construct_UScriptStruct_FInputChord_Statics::Struct_MetaDataParams)
};
UScriptStruct* Z_Construct_UScriptStruct_FInputChord()
{
if (!Z_Registration_Info_UScriptStruct_FInputChord.InnerSingleton)
{
UECodeGen_Private::ConstructUScriptStruct(Z_Registration_Info_UScriptStruct_FInputChord.InnerSingleton, Z_Construct_UScriptStruct_FInputChord_Statics::StructParams);
}
return CastChecked<UScriptStruct>(Z_Registration_Info_UScriptStruct_FInputChord.InnerSingleton);
}
// ********** End ScriptStruct FInputChord *********************************************************
// ********** Begin Registration *******************************************************************
struct Z_CompiledInDeferFile_FID_Engine_Source_Runtime_Slate_Public_Framework_Commands_InputChord_h__Script_Slate_Statics
{
static constexpr FStructRegisterCompiledInInfo ScriptStructInfo[] = {
{ FInputChord::StaticStruct, Z_Construct_UScriptStruct_FInputChord_Statics::NewStructOps, TEXT("InputChord"),&Z_Registration_Info_UScriptStruct_FInputChord, CONSTRUCT_RELOAD_VERSION_INFO(FStructReloadVersionInfo, sizeof(FInputChord), 2741225554U) },
};
}; // Z_CompiledInDeferFile_FID_Engine_Source_Runtime_Slate_Public_Framework_Commands_InputChord_h__Script_Slate_Statics
static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Engine_Source_Runtime_Slate_Public_Framework_Commands_InputChord_h__Script_Slate_95659924{
TEXT("/Script/Slate"),
nullptr, 0,
Z_CompiledInDeferFile_FID_Engine_Source_Runtime_Slate_Public_Framework_Commands_InputChord_h__Script_Slate_Statics::ScriptStructInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Engine_Source_Runtime_Slate_Public_Framework_Commands_InputChord_h__Script_Slate_Statics::ScriptStructInfo),
nullptr, 0,
};
// ********** End Registration *********************************************************************
PRAGMA_ENABLE_DEPRECATION_WARNINGS