DRG-Femboy-Voice/Source/FSD/Private/WindowWidget.cpp
2025-04-15 12:39:31 -07:00

25 lines
416 B
C++
Executable file

#include "WindowWidget.h"
bool UWindowWidget::ReceiveCanCloseWindow_Implementation(FName InActionName, FKey InKey, bool InIsMouseEvent) {
return false;
}
void UWindowWidget::ConsumeCommand() {
}
void UWindowWidget::CloseThisWindow() {
}
UWindowWidget::UWindowWidget() : UUserWidget(FObjectInitializer::Get()) {
this->bHandleCloseCommand = true;
this->bResolutionDownscaleWhenOpen = false;
}