21 lines
697 B
C++
21 lines
697 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "Engine/TextureRenderTarget2D.h"
|
|
#include "AssetDefinition_TextureRenderTarget.h"
|
|
|
|
#include "AssetDefinition_TextureRenderTarget2D.generated.h"
|
|
|
|
UCLASS()
|
|
class ENGINEASSETDEFINITIONS_API UAssetDefinition_TextureRenderTarget2D : public UAssetDefinition_TextureRenderTarget
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
// UAssetDefinition Begin
|
|
virtual FText GetAssetDisplayName() const override { return NSLOCTEXT("AssetTypeActions", "AssetTypeActions_TextureRenderTarget2D", "Render Target"); }
|
|
virtual TSoftClassPtr<UObject> GetAssetClass() const override { return UTextureRenderTarget2D::StaticClass(); }
|
|
// UAssetDefinition End
|
|
};
|