EM_Task/UnrealEd/Classes/Factories/CurveImportFactory.h
Boshuang Zhao 5144a49c9b add
2026-02-13 16:18:33 +08:00

23 lines
666 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
/**
* Factory for importing curves from other data formats.
*/
#pragma once
#include "CoreMinimal.h"
#include "UObject/ObjectMacros.h"
#include "Factories/Factory.h"
#include "CurveImportFactory.generated.h"
UCLASS(hidecategories = Object)
class UCurveImportFactory: public UFactory
{
GENERATED_UCLASS_BODY()
//~ Begin UFactory Interface
virtual UObject* FactoryCreateText(UClass* InClass, UObject* InParent, FName InName, EObjectFlags Flags, UObject* Context, const TCHAR* Type, const TCHAR*& Buffer, const TCHAR* BufferEnd, FFeedbackContext* Warn) override;
//~ Begin UFactory Interface
};