unitysamples / LyraStarterGame /Plugins /GameSettings /Source /Private /Widgets /Responsive /GameResponsivePanelSlot.h
| // Copyright Epic Games, Inc. All Rights Reserved. | |
| class UObject; | |
| UCLASS() | |
| class UGameResponsivePanelSlot : public UPanelSlot | |
| { | |
| GENERATED_UCLASS_BODY() | |
| public: | |
| public: | |
| void BuildSlot(TSharedRef<SGameResponsivePanel> GameResponsivePanel); | |
| // UPanelSlot interface | |
| virtual void SynchronizeProperties() override; | |
| // End of UPanelSlot interface | |
| virtual void ReleaseSlateResources(bool bReleaseChildren) override; | |
| private: | |
| SGameResponsivePanel::FSlot* Slot; | |
| }; | |