27 lines
570 B
C
27 lines
570 B
C
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "CoreMinimal.h"
|
||
|
#include "GameUIManagerSubsystem.h"
|
||
|
|
||
|
#include "LyraUIManagerSubsystem.generated.h"
|
||
|
|
||
|
UCLASS()
|
||
|
class ULyraUIManagerSubsystem : public UGameUIManagerSubsystem
|
||
|
{
|
||
|
GENERATED_BODY()
|
||
|
|
||
|
public:
|
||
|
|
||
|
ULyraUIManagerSubsystem();
|
||
|
|
||
|
virtual void Initialize(FSubsystemCollectionBase& Collection) override;
|
||
|
virtual void Deinitialize() override;
|
||
|
|
||
|
private:
|
||
|
bool Tick(float DeltaTime);
|
||
|
void SyncRootLayoutVisibilityToShowHUD();
|
||
|
|
||
|
FTSTicker::FDelegateHandle TickHandle;
|
||
|
};
|