You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- 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]
28 lines
499 B
C++
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");
|
|
}
|
|
};
|
|
|