mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-26 19:33:43 +00:00
17 lines
401 B
C++
17 lines
401 B
C++
#include "FortDropdownDelegateRegistrar.h"
|
|
|
|
void UFortDropdownDelegateRegistrar::OnOpenStatusChanged(bool Open) {
|
|
}
|
|
|
|
UWidget* UFortDropdownDelegateRegistrar::GetOrCreateDropdownMenu() {
|
|
return NULL;
|
|
}
|
|
|
|
UFortDropdownDelegateRegistrar::UFortDropdownDelegateRegistrar() {
|
|
this->ContextProvider = NULL;
|
|
this->Button = NULL;
|
|
this->MenuAnchor = NULL;
|
|
this->CachedDropdownMenu = NULL;
|
|
}
|
|
|