File size: 635 Bytes
b315adb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | // Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Components/PanelSlot.h"
#include "SGameResponsivePanel.h"
#include "GameResponsivePanelSlot.generated.h"
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;
};
|