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

27 lines
570 B
C
Raw Normal View History

2022-05-23 18:41:30 +00:00
// 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;
};