mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
16 lines
435 B
C++
16 lines
435 B
C++
#include "FortActivatablePanel.h"
|
|
|
|
void UFortActivatablePanel::RestoreScrollWidget(UWidget* FallbackWidget) {
|
|
}
|
|
|
|
void UFortActivatablePanel::RestoreCenterWidget(UWidget* FallbackWidget) {
|
|
}
|
|
|
|
UFortActivatablePanel::UFortActivatablePanel() {
|
|
this->bIsPushedOnToContentPanelStack = false;
|
|
this->bIsAlreadyOnContentPanelStack = false;
|
|
this->InputPriority = EInputPriority::Normal;
|
|
this->bIsClosableByPlayerInput = true;
|
|
}
|
|
|