16 lines
519 B
C++
16 lines
519 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "WorkflowOrientedApp/WorkflowTabFactory.h"
|
|
|
|
struct FPhysicsAssetEditorToolsSummoner : public FWorkflowTabFactory
|
|
{
|
|
public:
|
|
FPhysicsAssetEditorToolsSummoner(TSharedPtr<FAssetEditorToolkit> InHostingApp);
|
|
|
|
/** FWorkflowTabFactory interface */
|
|
virtual TSharedRef<SWidget> CreateTabBody(const FWorkflowTabSpawnInfo& Info) const override;
|
|
virtual TSharedPtr<SToolTip> CreateTabToolTipWidget(const FWorkflowTabSpawnInfo& Info) const override;
|
|
};
|