EM_Task/UnrealEd/Classes/Exporters/ExportTextContainer.h

19 lines
393 B
C
Raw Permalink Normal View History

2026-02-13 16:18:33 +08:00
// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "UObject/ObjectMacros.h"
#include "UObject/Object.h"
#include "ExportTextContainer.generated.h"
UCLASS(MinimalAPI)
class UExportTextContainer: public UObject
{
GENERATED_UCLASS_BODY()
/** ExportText representation of one or more objects */
UPROPERTY()
FString ExportText;
};