lyra_game_ue/Source/LyraGame/UI/Subsystem/LyraUIManagerSubsystem.h

31 lines
599 B
C
Raw Normal View History

2025-03-20 11:06:26 +01:00
// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Containers/Ticker.h"
#include "GameUIManagerSubsystem.h"
#include "LyraUIManagerSubsystem.generated.h"
class FSubsystemCollectionBase;
class UObject;
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;
};