File size: 925 Bytes
7fd553e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | // Copyright Epic Games, Inc. All Rights Reserved.
#include "LyraContextEffectsLibraryFactory.h"
#include "Feedback/ContextEffects/LyraContextEffectsLibrary.h"
#include UE_INLINE_GENERATED_CPP_BY_NAME(LyraContextEffectsLibraryFactory)
class FFeedbackContext;
class UClass;
class UObject;
ULyraContextEffectsLibraryFactory::ULyraContextEffectsLibraryFactory(const FObjectInitializer& ObjectInitializer)
: Super(ObjectInitializer)
{
SupportedClass = ULyraContextEffectsLibrary::StaticClass();
bCreateNew = true;
bEditorImport = false;
bEditAfterNew = true;
}
UObject* ULyraContextEffectsLibraryFactory::FactoryCreateNew(UClass* Class, UObject* InParent, FName Name, EObjectFlags Flags, UObject* Context, FFeedbackContext* Warn)
{
ULyraContextEffectsLibrary* LyraContextEffectsLibrary = NewObject<ULyraContextEffectsLibrary>(InParent, Name, Flags);
return LyraContextEffectsLibrary;
}
|