21 lines
731 B
C++
21 lines
731 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "Engine/TextureRenderTarget2DArray.h"
|
|
#include "AssetDefinition_TextureRenderTarget.h"
|
|
|
|
#include "AssetDefinition_TextureRenderTarget2DArray.generated.h"
|
|
|
|
UCLASS()
|
|
class ENGINEASSETDEFINITIONS_API UAssetDefinition_TextureRenderTarget2DArray : public UAssetDefinition_TextureRenderTarget
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
// UAssetDefinition Begin
|
|
virtual FText GetAssetDisplayName() const override { return NSLOCTEXT("AssetTypeActions", "AssetTypeActions_TextureRenderTarget2DArray", "2D Array Render Target"); }
|
|
virtual TSoftClassPtr<UObject> GetAssetClass() const override { return UTextureRenderTarget2DArray::StaticClass(); }
|
|
// UAssetDefinition End
|
|
};
|