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