accidentally fixed the bug for camera component not being properly placed in-game; will need to fine tune the numbers next
This commit is contained in:
@ -98,9 +98,9 @@ void EmptyLinkFunctionForGeneratedCodeHYInteractableActor() {}
|
||||
};
|
||||
#if WITH_METADATA
|
||||
const UECodeGen_Private::FMetaDataPairParam Z_Construct_UFunction_AHYInteractableActor_Interact_Statics::Function_MetaDataParams[] = {
|
||||
{ "Comment", "//this is a Blueprint \n" },
|
||||
{ "Comment", "//this is a Blueprint-only Event; does not have C++ implementation\n" },
|
||||
{ "ModuleRelativePath", "HYInteractableActor.h" },
|
||||
{ "ToolTip", "this is a Blueprint" },
|
||||
{ "ToolTip", "this is a Blueprint-only Event; does not have C++ implementation" },
|
||||
};
|
||||
#endif
|
||||
const UECodeGen_Private::FFunctionParams Z_Construct_UFunction_AHYInteractableActor_Interact_Statics::FuncParams = { (UObject*(*)())Z_Construct_UClass_AHYInteractableActor, nullptr, "Interact", nullptr, nullptr, sizeof(HYInteractableActor_eventInteract_Parms), Z_Construct_UFunction_AHYInteractableActor_Interact_Statics::PropPointers, UE_ARRAY_COUNT(Z_Construct_UFunction_AHYInteractableActor_Interact_Statics::PropPointers), RF_Public|RF_Transient|RF_MarkAsNative, (EFunctionFlags)0x08020C00, 0, 0, METADATA_PARAMS(Z_Construct_UFunction_AHYInteractableActor_Interact_Statics::Function_MetaDataParams, UE_ARRAY_COUNT(Z_Construct_UFunction_AHYInteractableActor_Interact_Statics::Function_MetaDataParams)) };
|
||||
@ -143,12 +143,14 @@ void EmptyLinkFunctionForGeneratedCodeHYInteractableActor() {}
|
||||
};
|
||||
const FClassFunctionLinkInfo Z_Construct_UClass_AHYInteractableActor_Statics::FuncInfo[] = {
|
||||
{ &Z_Construct_UFunction_AHYInteractableActor_GetInteractText, "GetInteractText" }, // 1228690879
|
||||
{ &Z_Construct_UFunction_AHYInteractableActor_Interact, "Interact" }, // 1420536544
|
||||
{ &Z_Construct_UFunction_AHYInteractableActor_Interact, "Interact" }, // 2314526078
|
||||
};
|
||||
#if WITH_METADATA
|
||||
const UECodeGen_Private::FMetaDataPairParam Z_Construct_UClass_AHYInteractableActor_Statics::Class_MetaDataParams[] = {
|
||||
{ "Comment", "/*\n* Parent class for all interactable actor objects \n*/" },
|
||||
{ "IncludePath", "HYInteractableActor.h" },
|
||||
{ "ModuleRelativePath", "HYInteractableActor.h" },
|
||||
{ "ToolTip", "* Parent class for all interactable actor objects" },
|
||||
};
|
||||
#endif
|
||||
#if WITH_METADATA
|
||||
@ -206,9 +208,9 @@ void EmptyLinkFunctionForGeneratedCodeHYInteractableActor() {}
|
||||
static const FClassRegisterCompiledInInfo ClassInfo[];
|
||||
};
|
||||
const FClassRegisterCompiledInInfo Z_CompiledInDeferFile_FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_Statics::ClassInfo[] = {
|
||||
{ Z_Construct_UClass_AHYInteractableActor, AHYInteractableActor::StaticClass, TEXT("AHYInteractableActor"), &Z_Registration_Info_UClass_AHYInteractableActor, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(AHYInteractableActor), 575901954U) },
|
||||
{ Z_Construct_UClass_AHYInteractableActor, AHYInteractableActor::StaticClass, TEXT("AHYInteractableActor"), &Z_Registration_Info_UClass_AHYInteractableActor, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(AHYInteractableActor), 3331186442U) },
|
||||
};
|
||||
static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_3602904479(TEXT("/Script/hwanyoung2"),
|
||||
static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_1900664570(TEXT("/Script/hwanyoung2"),
|
||||
Z_CompiledInDeferFile_FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_Statics::ClassInfo),
|
||||
nullptr, 0,
|
||||
nullptr, 0);
|
||||
|
@ -15,23 +15,23 @@ class APlayerController;
|
||||
#endif
|
||||
#define HWANYOUNG2_HYInteractableActor_generated_h
|
||||
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_12_SPARSE_DATA
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_12_RPC_WRAPPERS \
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_15_SPARSE_DATA
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_15_RPC_WRAPPERS \
|
||||
virtual void Interact_Implementation(APlayerController* Controller); \
|
||||
\
|
||||
DECLARE_FUNCTION(execGetInteractText); \
|
||||
DECLARE_FUNCTION(execInteract);
|
||||
|
||||
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_12_RPC_WRAPPERS_NO_PURE_DECLS \
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_15_RPC_WRAPPERS_NO_PURE_DECLS \
|
||||
\
|
||||
DECLARE_FUNCTION(execGetInteractText); \
|
||||
DECLARE_FUNCTION(execInteract);
|
||||
|
||||
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_12_ACCESSORS
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_12_CALLBACK_WRAPPERS
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_12_INCLASS_NO_PURE_DECLS \
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_15_ACCESSORS
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_15_CALLBACK_WRAPPERS
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_15_INCLASS_NO_PURE_DECLS \
|
||||
private: \
|
||||
static void StaticRegisterNativesAHYInteractableActor(); \
|
||||
friend struct Z_Construct_UClass_AHYInteractableActor_Statics; \
|
||||
@ -40,7 +40,7 @@ public: \
|
||||
DECLARE_SERIALIZER(AHYInteractableActor)
|
||||
|
||||
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_12_INCLASS \
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_15_INCLASS \
|
||||
private: \
|
||||
static void StaticRegisterNativesAHYInteractableActor(); \
|
||||
friend struct Z_Construct_UClass_AHYInteractableActor_Statics; \
|
||||
@ -49,7 +49,7 @@ public: \
|
||||
DECLARE_SERIALIZER(AHYInteractableActor)
|
||||
|
||||
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_12_STANDARD_CONSTRUCTORS \
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_15_STANDARD_CONSTRUCTORS \
|
||||
/** Standard constructor, called after all reflected properties have been initialized */ \
|
||||
NO_API AHYInteractableActor(const FObjectInitializer& ObjectInitializer); \
|
||||
DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(AHYInteractableActor) \
|
||||
@ -63,7 +63,7 @@ public: \
|
||||
NO_API virtual ~AHYInteractableActor();
|
||||
|
||||
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_12_ENHANCED_CONSTRUCTORS \
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_15_ENHANCED_CONSTRUCTORS \
|
||||
private: \
|
||||
/** Private move- and copy-constructors, should never be used */ \
|
||||
NO_API AHYInteractableActor(AHYInteractableActor&&); \
|
||||
@ -75,29 +75,29 @@ public: \
|
||||
NO_API virtual ~AHYInteractableActor();
|
||||
|
||||
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_9_PROLOG
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_12_GENERATED_BODY_LEGACY \
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_12_PROLOG
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_15_GENERATED_BODY_LEGACY \
|
||||
PRAGMA_DISABLE_DEPRECATION_WARNINGS \
|
||||
public: \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_12_SPARSE_DATA \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_12_RPC_WRAPPERS \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_12_ACCESSORS \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_12_CALLBACK_WRAPPERS \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_12_INCLASS \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_12_STANDARD_CONSTRUCTORS \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_15_SPARSE_DATA \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_15_RPC_WRAPPERS \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_15_ACCESSORS \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_15_CALLBACK_WRAPPERS \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_15_INCLASS \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_15_STANDARD_CONSTRUCTORS \
|
||||
public: \
|
||||
PRAGMA_ENABLE_DEPRECATION_WARNINGS
|
||||
|
||||
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_12_GENERATED_BODY \
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_15_GENERATED_BODY \
|
||||
PRAGMA_DISABLE_DEPRECATION_WARNINGS \
|
||||
public: \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_12_SPARSE_DATA \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_12_RPC_WRAPPERS_NO_PURE_DECLS \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_12_ACCESSORS \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_12_CALLBACK_WRAPPERS \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_12_INCLASS_NO_PURE_DECLS \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_12_ENHANCED_CONSTRUCTORS \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_15_SPARSE_DATA \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_15_RPC_WRAPPERS_NO_PURE_DECLS \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_15_ACCESSORS \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_15_CALLBACK_WRAPPERS \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_15_INCLASS_NO_PURE_DECLS \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYInteractableActor_h_15_ENHANCED_CONSTRUCTORS \
|
||||
private: \
|
||||
PRAGMA_ENABLE_DEPRECATION_WARNINGS
|
||||
|
||||
|
@ -108,9 +108,9 @@ void EmptyLinkFunctionForGeneratedCodeHYManualPickUp() {}
|
||||
static const FClassRegisterCompiledInInfo ClassInfo[];
|
||||
};
|
||||
const FClassRegisterCompiledInInfo Z_CompiledInDeferFile_FID_hwanyoung2_Source_hwanyoung2_HYManualPickUp_h_Statics::ClassInfo[] = {
|
||||
{ Z_Construct_UClass_AHYManualPickUp, AHYManualPickUp::StaticClass, TEXT("AHYManualPickUp"), &Z_Registration_Info_UClass_AHYManualPickUp, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(AHYManualPickUp), 1526782913U) },
|
||||
{ Z_Construct_UClass_AHYManualPickUp, AHYManualPickUp::StaticClass, TEXT("AHYManualPickUp"), &Z_Registration_Info_UClass_AHYManualPickUp, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(AHYManualPickUp), 253987176U) },
|
||||
};
|
||||
static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_hwanyoung2_Source_hwanyoung2_HYManualPickUp_h_3814434639(TEXT("/Script/hwanyoung2"),
|
||||
static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_hwanyoung2_Source_hwanyoung2_HYManualPickUp_h_92757738(TEXT("/Script/hwanyoung2"),
|
||||
Z_CompiledInDeferFile_FID_hwanyoung2_Source_hwanyoung2_HYManualPickUp_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_hwanyoung2_Source_hwanyoung2_HYManualPickUp_h_Statics::ClassInfo),
|
||||
nullptr, 0,
|
||||
nullptr, 0);
|
||||
|
@ -0,0 +1,87 @@
|
||||
// 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 "hwanyoung2/HYWeapon.h"
|
||||
PRAGMA_DISABLE_DEPRECATION_WARNINGS
|
||||
void EmptyLinkFunctionForGeneratedCodeHYWeapon() {}
|
||||
// Cross Module References
|
||||
ENGINE_API UClass* Z_Construct_UClass_AActor();
|
||||
HWANYOUNG2_API UClass* Z_Construct_UClass_AHYWeapon();
|
||||
HWANYOUNG2_API UClass* Z_Construct_UClass_AHYWeapon_NoRegister();
|
||||
UPackage* Z_Construct_UPackage__Script_hwanyoung2();
|
||||
// End Cross Module References
|
||||
void AHYWeapon::StaticRegisterNativesAHYWeapon()
|
||||
{
|
||||
}
|
||||
IMPLEMENT_CLASS_NO_AUTO_REGISTRATION(AHYWeapon);
|
||||
UClass* Z_Construct_UClass_AHYWeapon_NoRegister()
|
||||
{
|
||||
return AHYWeapon::StaticClass();
|
||||
}
|
||||
struct Z_Construct_UClass_AHYWeapon_Statics
|
||||
{
|
||||
static UObject* (*const DependentSingletons[])();
|
||||
#if WITH_METADATA
|
||||
static const UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[];
|
||||
#endif
|
||||
static const FCppClassTypeInfoStatic StaticCppClassTypeInfo;
|
||||
static const UECodeGen_Private::FClassParams ClassParams;
|
||||
};
|
||||
UObject* (*const Z_Construct_UClass_AHYWeapon_Statics::DependentSingletons[])() = {
|
||||
(UObject* (*)())Z_Construct_UClass_AActor,
|
||||
(UObject* (*)())Z_Construct_UPackage__Script_hwanyoung2,
|
||||
};
|
||||
#if WITH_METADATA
|
||||
const UECodeGen_Private::FMetaDataPairParam Z_Construct_UClass_AHYWeapon_Statics::Class_MetaDataParams[] = {
|
||||
{ "IncludePath", "HYWeapon.h" },
|
||||
{ "ModuleRelativePath", "HYWeapon.h" },
|
||||
};
|
||||
#endif
|
||||
const FCppClassTypeInfoStatic Z_Construct_UClass_AHYWeapon_Statics::StaticCppClassTypeInfo = {
|
||||
TCppClassTypeTraits<AHYWeapon>::IsAbstract,
|
||||
};
|
||||
const UECodeGen_Private::FClassParams Z_Construct_UClass_AHYWeapon_Statics::ClassParams = {
|
||||
&AHYWeapon::StaticClass,
|
||||
"Engine",
|
||||
&StaticCppClassTypeInfo,
|
||||
DependentSingletons,
|
||||
nullptr,
|
||||
nullptr,
|
||||
nullptr,
|
||||
UE_ARRAY_COUNT(DependentSingletons),
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0x009000A4u,
|
||||
METADATA_PARAMS(Z_Construct_UClass_AHYWeapon_Statics::Class_MetaDataParams, UE_ARRAY_COUNT(Z_Construct_UClass_AHYWeapon_Statics::Class_MetaDataParams))
|
||||
};
|
||||
UClass* Z_Construct_UClass_AHYWeapon()
|
||||
{
|
||||
if (!Z_Registration_Info_UClass_AHYWeapon.OuterSingleton)
|
||||
{
|
||||
UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_AHYWeapon.OuterSingleton, Z_Construct_UClass_AHYWeapon_Statics::ClassParams);
|
||||
}
|
||||
return Z_Registration_Info_UClass_AHYWeapon.OuterSingleton;
|
||||
}
|
||||
template<> HWANYOUNG2_API UClass* StaticClass<AHYWeapon>()
|
||||
{
|
||||
return AHYWeapon::StaticClass();
|
||||
}
|
||||
DEFINE_VTABLE_PTR_HELPER_CTOR(AHYWeapon);
|
||||
AHYWeapon::~AHYWeapon() {}
|
||||
struct Z_CompiledInDeferFile_FID_hwanyoung2_Source_hwanyoung2_HYWeapon_h_Statics
|
||||
{
|
||||
static const FClassRegisterCompiledInInfo ClassInfo[];
|
||||
};
|
||||
const FClassRegisterCompiledInInfo Z_CompiledInDeferFile_FID_hwanyoung2_Source_hwanyoung2_HYWeapon_h_Statics::ClassInfo[] = {
|
||||
{ Z_Construct_UClass_AHYWeapon, AHYWeapon::StaticClass, TEXT("AHYWeapon"), &Z_Registration_Info_UClass_AHYWeapon, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(AHYWeapon), 3367795170U) },
|
||||
};
|
||||
static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_hwanyoung2_Source_hwanyoung2_HYWeapon_h_1752778142(TEXT("/Script/hwanyoung2"),
|
||||
Z_CompiledInDeferFile_FID_hwanyoung2_Source_hwanyoung2_HYWeapon_h_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_hwanyoung2_Source_hwanyoung2_HYWeapon_h_Statics::ClassInfo),
|
||||
nullptr, 0,
|
||||
nullptr, 0);
|
||||
PRAGMA_ENABLE_DEPRECATION_WARNINGS
|
@ -0,0 +1,96 @@
|
||||
// Copyright Epic Games, Inc. All Rights Reserved.
|
||||
/*===========================================================================
|
||||
Generated code exported from UnrealHeaderTool.
|
||||
DO NOT modify this manually! Edit the corresponding .h files instead!
|
||||
===========================================================================*/
|
||||
|
||||
// IWYU pragma: private, include "HYWeapon.h"
|
||||
#include "UObject/ObjectMacros.h"
|
||||
#include "UObject/ScriptMacros.h"
|
||||
|
||||
PRAGMA_DISABLE_DEPRECATION_WARNINGS
|
||||
#ifdef HWANYOUNG2_HYWeapon_generated_h
|
||||
#error "HYWeapon.generated.h already included, missing '#pragma once' in HYWeapon.h"
|
||||
#endif
|
||||
#define HWANYOUNG2_HYWeapon_generated_h
|
||||
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYWeapon_h_12_SPARSE_DATA
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYWeapon_h_12_RPC_WRAPPERS
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYWeapon_h_12_RPC_WRAPPERS_NO_PURE_DECLS
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYWeapon_h_12_ACCESSORS
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYWeapon_h_12_INCLASS_NO_PURE_DECLS \
|
||||
private: \
|
||||
static void StaticRegisterNativesAHYWeapon(); \
|
||||
friend struct Z_Construct_UClass_AHYWeapon_Statics; \
|
||||
public: \
|
||||
DECLARE_CLASS(AHYWeapon, AActor, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/hwanyoung2"), NO_API) \
|
||||
DECLARE_SERIALIZER(AHYWeapon)
|
||||
|
||||
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYWeapon_h_12_INCLASS \
|
||||
private: \
|
||||
static void StaticRegisterNativesAHYWeapon(); \
|
||||
friend struct Z_Construct_UClass_AHYWeapon_Statics; \
|
||||
public: \
|
||||
DECLARE_CLASS(AHYWeapon, AActor, COMPILED_IN_FLAGS(0 | CLASS_Config), CASTCLASS_None, TEXT("/Script/hwanyoung2"), NO_API) \
|
||||
DECLARE_SERIALIZER(AHYWeapon)
|
||||
|
||||
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYWeapon_h_12_STANDARD_CONSTRUCTORS \
|
||||
/** Standard constructor, called after all reflected properties have been initialized */ \
|
||||
NO_API AHYWeapon(const FObjectInitializer& ObjectInitializer); \
|
||||
DEFINE_DEFAULT_OBJECT_INITIALIZER_CONSTRUCTOR_CALL(AHYWeapon) \
|
||||
DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, AHYWeapon); \
|
||||
DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(AHYWeapon); \
|
||||
private: \
|
||||
/** Private move- and copy-constructors, should never be used */ \
|
||||
NO_API AHYWeapon(AHYWeapon&&); \
|
||||
NO_API AHYWeapon(const AHYWeapon&); \
|
||||
public: \
|
||||
NO_API virtual ~AHYWeapon();
|
||||
|
||||
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYWeapon_h_12_ENHANCED_CONSTRUCTORS \
|
||||
private: \
|
||||
/** Private move- and copy-constructors, should never be used */ \
|
||||
NO_API AHYWeapon(AHYWeapon&&); \
|
||||
NO_API AHYWeapon(const AHYWeapon&); \
|
||||
public: \
|
||||
DECLARE_VTABLE_PTR_HELPER_CTOR(NO_API, AHYWeapon); \
|
||||
DEFINE_VTABLE_PTR_HELPER_CTOR_CALLER(AHYWeapon); \
|
||||
DEFINE_DEFAULT_CONSTRUCTOR_CALL(AHYWeapon) \
|
||||
NO_API virtual ~AHYWeapon();
|
||||
|
||||
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYWeapon_h_9_PROLOG
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYWeapon_h_12_GENERATED_BODY_LEGACY \
|
||||
PRAGMA_DISABLE_DEPRECATION_WARNINGS \
|
||||
public: \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYWeapon_h_12_SPARSE_DATA \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYWeapon_h_12_RPC_WRAPPERS \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYWeapon_h_12_ACCESSORS \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYWeapon_h_12_INCLASS \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYWeapon_h_12_STANDARD_CONSTRUCTORS \
|
||||
public: \
|
||||
PRAGMA_ENABLE_DEPRECATION_WARNINGS
|
||||
|
||||
|
||||
#define FID_hwanyoung2_Source_hwanyoung2_HYWeapon_h_12_GENERATED_BODY \
|
||||
PRAGMA_DISABLE_DEPRECATION_WARNINGS \
|
||||
public: \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYWeapon_h_12_SPARSE_DATA \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYWeapon_h_12_RPC_WRAPPERS_NO_PURE_DECLS \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYWeapon_h_12_ACCESSORS \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYWeapon_h_12_INCLASS_NO_PURE_DECLS \
|
||||
FID_hwanyoung2_Source_hwanyoung2_HYWeapon_h_12_ENHANCED_CONSTRUCTORS \
|
||||
private: \
|
||||
PRAGMA_ENABLE_DEPRECATION_WARNINGS
|
||||
|
||||
|
||||
template<> HWANYOUNG2_API UClass* StaticClass<class AHYWeapon>();
|
||||
|
||||
#undef CURRENT_FILE_ID
|
||||
#define CURRENT_FILE_ID FID_hwanyoung2_Source_hwanyoung2_HYWeapon_h
|
||||
|
||||
|
||||
PRAGMA_ENABLE_DEPRECATION_WARNINGS
|
@ -1,14 +1,15 @@
|
||||
D:\GitHub\Personal Projects\Illusion-UE5\hwanyoung2\Source\hwanyoung2\hwanyoung2.h
|
||||
D:\GitHub\Personal Projects\Illusion-UE5\hwanyoung2\Source\hwanyoung2\hwanyoung2GameMode.h
|
||||
D:\GitHub\Personal Projects\Illusion-UE5\hwanyoung2\Source\hwanyoung2\HwanyoungAssetManager.h
|
||||
D:\GitHub\Personal Projects\Illusion-UE5\hwanyoung2\Source\hwanyoung2\HYCharacAbilitySystemComponent.h
|
||||
D:\GitHub\Personal Projects\Illusion-UE5\hwanyoung2\Source\hwanyoung2\HYAIController.h
|
||||
D:\GitHub\Personal Projects\Illusion-UE5\hwanyoung2\Source\hwanyoung2\HYCharacGameplayAbility.h
|
||||
D:\GitHub\Personal Projects\Illusion-UE5\hwanyoung2\Source\hwanyoung2\HYGameStateBase.h
|
||||
D:\GitHub\Personal Projects\Illusion-UE5\hwanyoung2\Source\hwanyoung2\HYInteractableActor.h
|
||||
D:\GitHub\Personal Projects\Illusion-UE5\hwanyoung2\Source\hwanyoung2\HYManualPickUp.h
|
||||
D:\GitHub\Personal Projects\Illusion-UE5\hwanyoung2\Source\hwanyoung2\HYPlayerCharacAttributeSet.h
|
||||
D:\GitHub\Personal Projects\Illusion-UE5\hwanyoung2\Source\hwanyoung2\HYPlayerState.h
|
||||
D:\GitHub\Personal Projects\Illusion-UE5\hwanyoung2\Source\hwanyoung2\HYPlayerCharacController.h
|
||||
D:\GitHub\Personal Projects\Illusion-UE5\hwanyoung2\Source\hwanyoung2\HYWeapon.h
|
||||
D:\GitHub\Personal Projects\Illusion-UE5\hwanyoung2\Source\hwanyoung2\InventoryItem.h
|
||||
D:\GitHub\Personal Projects\Illusion-UE5\hwanyoung2\Source\hwanyoung2\hwanyoung2Character.h
|
||||
D:\GitHub\Personal Projects\Illusion-UE5\hwanyoung2\Source\hwanyoung2\HYCharacGameplayAbility.h
|
||||
D:\GitHub\Personal Projects\Illusion-UE5\hwanyoung2\Source\hwanyoung2\HwanyoungAssetManager.h
|
||||
D:\GitHub\Personal Projects\Illusion-UE5\hwanyoung2\Source\hwanyoung2\HYGameStateBase.h
|
||||
D:\GitHub\Personal Projects\Illusion-UE5\hwanyoung2\Source\hwanyoung2\HYPlayerCharacAttributeSet.h
|
||||
D:\GitHub\Personal Projects\Illusion-UE5\hwanyoung2\Source\hwanyoung2\HYPlayerCharacController.h
|
||||
D:\GitHub\Personal Projects\Illusion-UE5\hwanyoung2\Source\hwanyoung2\HYAIController.h
|
||||
|
@ -23,13 +23,13 @@ void EmptyLinkFunctionForGeneratedCodehwanyoung2_init() {}
|
||||
SingletonFuncArray,
|
||||
UE_ARRAY_COUNT(SingletonFuncArray),
|
||||
PKG_CompiledIn | 0x00000000,
|
||||
0x97BEBDED,
|
||||
0x518FC678,
|
||||
0x58542DA9,
|
||||
0x0F6FAF3A,
|
||||
METADATA_PARAMS(nullptr, 0)
|
||||
};
|
||||
UECodeGen_Private::ConstructUPackage(Z_Registration_Info_UPackage__Script_hwanyoung2.OuterSingleton, PackageParams);
|
||||
}
|
||||
return Z_Registration_Info_UPackage__Script_hwanyoung2.OuterSingleton;
|
||||
}
|
||||
static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_hwanyoung2(Z_Construct_UPackage__Script_hwanyoung2, TEXT("/Script/hwanyoung2"), Z_Registration_Info_UPackage__Script_hwanyoung2, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0x97BEBDED, 0x518FC678));
|
||||
static FRegisterCompiledInInfo Z_CompiledInDeferPackage_UPackage__Script_hwanyoung2(Z_Construct_UPackage__Script_hwanyoung2, TEXT("/Script/hwanyoung2"), Z_Registration_Info_UPackage__Script_hwanyoung2, CONSTRUCT_RELOAD_VERSION_INFO(FPackageReloadVersionInfo, 0x58542DA9, 0x0F6FAF3A));
|
||||
PRAGMA_ENABLE_DEPRECATION_WARNINGS
|
||||
|
Reference in New Issue
Block a user