Files
2026-04-22 15:51:07 +02:00

28 lines
704 B
C++

#include "FortItemReceivedWidgetBase.h"
void UFortItemReceivedWidgetBase::SetGiftBoxItem(UFortGiftBoxItem* NewGiftBoxItem) {
}
void UFortItemReceivedWidgetBase::SetAlignmentOnSlots(UScrollBox* Widget) {
}
void UFortItemReceivedWidgetBase::SetAlignmentOnSlot(UScrollBox* Widget, int32 Index) {
}
void UFortItemReceivedWidgetBase::OnGiftBoxItemSetInternal(bool bFromSelf) {
}
UFortItem* UFortItemReceivedWidgetBase::GetTemporaryInstance(const FFortReceivedItemLootInfo& ItemReference) {
return NULL;
}
UFortItemReceivedWidgetBase::UFortItemReceivedWidgetBase() {
this->GiftBoxItem = NULL;
this->HeaderContainer = NULL;
this->GiftScrollBox = NULL;
this->ItemCardClass = NULL;
}