mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 19:23:19 +00:00
23 lines
533 B
C++
23 lines
533 B
C++
#include "HUDLayoutToolPropertyPanel.h"
|
|
|
|
void UHUDLayoutToolPropertyPanel::OnWidgetSelected_Implementation(UHUDLayoutToolPlacementWidget* NewlySelectedWidget) {
|
|
}
|
|
|
|
void UHUDLayoutToolPropertyPanel::OnOpen_Implementation() {
|
|
}
|
|
|
|
void UHUDLayoutToolPropertyPanel::OnMenuStateChange(bool bNewlyOpen) {
|
|
}
|
|
|
|
void UHUDLayoutToolPropertyPanel::OnClose_Implementation() {
|
|
}
|
|
|
|
bool UHUDLayoutToolPropertyPanel::GetIsOpen() const {
|
|
return false;
|
|
}
|
|
|
|
UHUDLayoutToolPropertyPanel::UHUDLayoutToolPropertyPanel() {
|
|
this->PanelTitle = NULL;
|
|
}
|
|
|