Files
UnrealEngineUWP/Engine/Source/Editor/VirtualTexturingEditor/Classes/RuntimeVirtualTextureFactory.h
T

25 lines
647 B
C++
Raw Normal View History

2019-12-26 15:33:43 -05:00
// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Factories/Factory.h"
2022-08-24 22:45:13 -04:00
#include "UObject/NameTypes.h"
#include "UObject/UObjectGlobals.h"
#include "RuntimeVirtualTextureFactory.generated.h"
2022-08-24 22:45:13 -04:00
class FFeedbackContext;
class UClass;
class UObject;
/** Factory for URuntimeVirtualTexture */
UCLASS(hidecategories = (Object))
class URuntimeVirtualTextureFactory : public UFactory
{
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
};