2022-05-23 18:41:30 +00:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2022-09-13 07:18:28 +00:00
|
|
|
#include "Containers/UnrealString.h"
|
2022-05-23 18:41:30 +00:00
|
|
|
#include "UObject/GCObject.h"
|
|
|
|
#include "Widgets/DeclarativeSyntaxSupport.h"
|
2022-09-13 07:18:28 +00:00
|
|
|
#include "Widgets/SCompoundWidget.h"
|
2022-05-23 18:41:30 +00:00
|
|
|
|
2022-09-13 07:18:28 +00:00
|
|
|
class FReferenceCollector;
|
2022-05-23 18:41:30 +00:00
|
|
|
|
|
|
|
class SCommonPreLoadingScreenWidget : public SCompoundWidget, public FGCObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SLATE_BEGIN_ARGS(SCommonPreLoadingScreenWidget) {}
|
|
|
|
SLATE_END_ARGS()
|
|
|
|
|
|
|
|
void Construct(const FArguments& InArgs);
|
|
|
|
|
|
|
|
//~ Begin FGCObject interface
|
|
|
|
virtual void AddReferencedObjects(FReferenceCollector& Collector) override;
|
|
|
|
virtual FString GetReferencerName() const override;
|
|
|
|
//~ End FGCObject interface
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
};
|