mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
16 lines
381 B
C++
16 lines
381 B
C++
#include "FortHeroLoadoutSlotButton.h"
|
|
|
|
bool UFortHeroLoadoutSlotButton::IsContextMenuOpen() const {
|
|
return false;
|
|
}
|
|
|
|
void UFortHeroLoadoutSlotButton::HandleMenuOpenChanged(bool bIsMenuOpen) {
|
|
}
|
|
|
|
UFortHeroLoadoutSlotButton::UFortHeroLoadoutSlotButton() {
|
|
this->SlotIndex = 0;
|
|
this->SlotType = EHeroLoadoutSlotType::CommanderSlot;
|
|
this->ContextMenuAnchor = NULL;
|
|
}
|
|
|