You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira #preflight 6306736ac85b7fef22be7751 [CL 21558583 by bryan sefcik in ue5-main branch]
32 lines
663 B
C++
32 lines
663 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Modules/ModuleInterface.h"
|
|
#include "SlateFwd.h"
|
|
#include "Templates/SharedPointer.h"
|
|
|
|
class FSpawnTabArgs;
|
|
class SDockTab;
|
|
|
|
/**
|
|
* Device Profile Editor module
|
|
*/
|
|
class FDeviceProfileEditorModule : public IModuleInterface
|
|
{
|
|
|
|
public:
|
|
|
|
//~ Begin IModuleInterface Interface
|
|
virtual void StartupModule() override;
|
|
|
|
virtual void ShutdownModule() override;
|
|
//~ End IModuleInterface Interface
|
|
|
|
public:
|
|
/**
|
|
* Create the slate UI for the Device Profile Editor
|
|
*/
|
|
static TSharedRef<SDockTab> SpawnDeviceProfileEditorTab( const FSpawnTabArgs& SpawnTabArgs );
|
|
};
|