Files
UnrealEngineUWP/Engine/Source/Editor/VirtualTexturingEditor/Classes/RuntimeVirtualTextureFactory.h
Ben Ingram 354796606b Merging //UE4/Dev-VT/ to //UE4/Dev-Rendering/
#rb none

[CL 6401838 by Ben Ingram in Dev-Rendering branch]
2019-05-09 14:30:37 -04:00

20 lines
594 B
C++

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "UObject/ObjectMacros.h"
#include "Factories/Factory.h"
#include "RuntimeVirtualTextureFactory.generated.h"
/** 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
};