unitysamples / LyraStarterGame /Plugins /CommonLoadingScreen /Source /CommonStartupLoadingScreen /Private /SCommonPreLoadingScreenWidget.h
| // Copyright Epic Games, Inc. All Rights Reserved. | |
| class FReferenceCollector; | |
| 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: | |
| }; | |