EM_Task/UnrealEd/Classes/Factories/AimOffsetBlendSpaceFactory1D.h

23 lines
782 B
C
Raw Permalink Normal View History

2026-02-13 16:18:33 +08:00
// Copyright Epic Games, Inc. All Rights Reserved.
//~=============================================================================
// UAimOffsetBlendSpaceFactory1D
//~=============================================================================
#pragma once
#include "CoreMinimal.h"
#include "UObject/ObjectMacros.h"
#include "Factories/BlendSpaceFactory1D.h"
#include "AimOffsetBlendSpaceFactory1D.generated.h"
UCLASS(hidecategories = Object, MinimalAPI)
class UAimOffsetBlendSpaceFactory1D: public UBlendSpaceFactory1D
{
GENERATED_UCLASS_BODY()
//~ Begin UFactory Interface
virtual UObject* FactoryCreateNew(UClass* Class, UObject* InParent, FName Name, EObjectFlags Flags, UObject* Context, FFeedbackContext* Warn) override;
//~ Begin UFactory Interface
};