RealtimeStyleTransferRuntime/Plugins/GameSettings/Source/Private/Widgets/Responsive/GameResponsivePanelSlot.h

35 lines
710 B
C
Raw Normal View History

2022-05-23 18:41:30 +00:00
// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Components/PanelSlot.h"
#include "SGameResponsivePanel.h"
2022-09-13 07:18:28 +00:00
#include "Templates/SharedPointer.h"
#include "UObject/UObjectGlobals.h"
2022-05-23 18:41:30 +00:00
#include "GameResponsivePanelSlot.generated.h"
2022-09-13 07:18:28 +00:00
class UObject;
2022-05-23 18:41:30 +00:00
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;
};