EM_Task/UnrealEd/Classes/Exporters/ModelExporterT3D.h

30 lines
884 B
C
Raw Normal View History

2026-02-13 16:18:33 +08:00
// Copyright Epic Games, Inc. All Rights Reserved.
//~=============================================================================
// ModelExporterT3D
//~=============================================================================
#pragma once
#include "CoreMinimal.h"
#include "UObject/ObjectMacros.h"
#include "UObject/UObjectGlobals.h"
#include "Exporters/Exporter.h"
#include "ModelExporterT3D.generated.h"
class FExportObjectInnerContext;
UCLASS()
class UModelExporterT3D: public UExporter
{
public:
GENERATED_BODY()
public:
UModelExporterT3D(const FObjectInitializer& ObjectInitializer = FObjectInitializer());
//~ Begin UExporter Interface
virtual bool ExportText(const FExportObjectInnerContext* Context, UObject* Object, const TCHAR* Type, FOutputDevice& Ar, FFeedbackContext* Warn, uint32 PortFlags = 0) override;
//~ End UExporter Interface
};