Files
UnrealEngine/Engine/Source/Editor/ViewportInteraction/Public/VIGizmoHandleMeshComponent.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

22 lines
649 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "UObject/ObjectMacros.h"
#include "Components/StaticMeshComponent.h"
#include "VIGizmoHandleMeshComponent.generated.h"
UCLASS(hidecategories = Object)
class UE_DEPRECATED(5.7, "The ViewportInteraction module is being deprecated alongside VR Editor mode.") UGizmoHandleMeshComponent : public UStaticMeshComponent
{
GENERATED_BODY()
public:
/** Default constructor */
UGizmoHandleMeshComponent();
//~ Begin UPrimitiveComponent Interface
virtual class FPrimitiveSceneProxy* CreateSceneProxy() override;
//~ End UPrimitiveComponent Interface
};