Files
UnrealEngineUWP/Engine/Source/Editor/StatusBar/Public/StatusBarModule.h
Matt Kuhlenschmidt 2bd788d145 Status Bar updates
- Content browser drawer now working well with ctrl+space as the default keybinding. Summoning the drawer will immediately focus the search bar.  Had to add some new hooks into the content browser api for that
- Moved status bar to a proper module

[CL 13470560 by Matt Kuhlenschmidt in ue5-main branch]
2020-05-20 12:48:17 -04:00

28 lines
499 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Modules/ModuleInterface.h"
#include "Modules/ModuleManager.h"
/**
* The public interface to this module
*/
class IStatusBarModule : public IModuleInterface
{
public:
static inline IStatusBarModule& Get()
{
return FModuleManager::LoadModuleChecked<IStatusBarModule>( "StatusBar" );
}
static inline bool IsAvailable()
{
return FModuleManager::Get().IsModuleLoaded("StatusBar");
}
};