You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
29 lines
673 B
C
29 lines
673 B
C
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "Modules/ModuleInterface.h"
|
||
|
|
#include "Templates/SharedPointer.h"
|
||
|
|
|
||
|
|
class SWidget;
|
||
|
|
class SDockTab;
|
||
|
|
class FSpawnTabArgs;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* The module holding all of the UI related pieces for the Virtualization module
|
||
|
|
*/
|
||
|
|
class FVirtualizationEditorModule : public IModuleInterface
|
||
|
|
{
|
||
|
|
private:
|
||
|
|
|
||
|
|
virtual void StartupModule() override;
|
||
|
|
virtual void ShutdownModule() override;
|
||
|
|
|
||
|
|
void ShowVirtualAssetsStatisticsTab();
|
||
|
|
|
||
|
|
TSharedPtr<SWidget> CreateVirtualAssetsStatisticsDialog();
|
||
|
|
TSharedRef<SDockTab> CreateVirtualAssetsStatisticsTab(const FSpawnTabArgs& Args);
|
||
|
|
|
||
|
|
TWeakPtr<SDockTab> VirtualAssetsStatisticsTab;
|
||
|
|
};
|