RealtimeStyleTransferRuntime/Source/LyraGame/UI/Foundation/LyraControllerDisconnectedS...

24 lines
536 B
C
Raw Permalink Normal View History

2022-05-23 18:41:30 +00:00
// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CommonActivatableWidget.h"
2022-09-13 07:18:28 +00:00
#include "UObject/UObjectGlobals.h"
2022-05-23 18:41:30 +00:00
#include "LyraControllerDisconnectedScreen.generated.h"
class UHorizontalBox;
2022-09-13 07:18:28 +00:00
class UObject;
2022-05-23 18:41:30 +00:00
UCLASS(Abstract, BlueprintType, Blueprintable)
class ULyraControllerDisconnectedScreen : public UCommonActivatableWidget
{
GENERATED_BODY()
protected:
void NativeOnActivated() override;
private:
UPROPERTY(meta = (BindWidget))
2022-09-13 07:18:28 +00:00
TObjectPtr<UHorizontalBox> HBox_SwitchUser;
2022-05-23 18:41:30 +00:00
};