Files
UnrealEngineUWP/Engine/Source/Runtime/MeshEditingRuntime/StaticMeshEditableMeshFormat.h
Unrealbot 02dbb9765e Branch snapshot for CL 3327560
[CL 3327560 in Dev-Geometry branch]
2017-03-01 12:26:39 -05:00

21 lines
593 B
C++

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "IEditableMeshFormat.h"
/**
* Implements interactive mesh editing support for Static Meshes
*/
class FStaticMeshEditableMeshFormat : public IEditableMeshFormat
{
public:
// IEditableMeshFormat interface
virtual void FillMeshObjectPtr( class UPrimitiveComponent& Component, FEditableMeshSubMeshAddress& SubMeshAddress ) override;
virtual UEditableMesh* MakeEditableMesh( class UPrimitiveComponent& Component, const FEditableMeshSubMeshAddress& SubMeshAddress ) override;
};