Files
UnrealEngineUWP/Engine/Source/Editor/GeometryMode/Classes/GeomModifier_Triangulate.h
2014-03-14 14:13:41 -04:00

26 lines
418 B
C++

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
/**
* Triangulates selected objects.
*/
#pragma once
#include "GeomModifier_Triangulate.generated.h"
UCLASS()
class UGeomModifier_Triangulate : public UGeomModifier_Edit
{
GENERATED_UCLASS_BODY()
// Begin UGeomModifier Interface
virtual bool Supports() OVERRIDE;
protected:
virtual bool OnApply() OVERRIDE;
// End UGeomModifier Interface
};